09. Connections and Sessions in TCP/IP

Connections and Sessions in TCP/IP

ND004 C01 L02 13 Connections And Sessions

Takeaways

  • TCP/IP is connection-based , meaning all communications between parties are arranged over a connection. A connection is established before any data transmission begins.
  • Over TCP/IP, we'll always need to establish a connection between clients and servers in order to enable communications. Moreover:
    • Deliveries over the connection are error-checked : if packets arrive damaged or lost, then they are resent (known as retransmission ).
  • Connecting starts a session . Ending the connection ends the session.
  • In a database session, many transactions can occur during a given session. Each transaction does work to commit changes to the database (updating, inserting, or deleting records).

Aside: the UDP Protocol

The internet also offers the UDP protocol. UDP is much simpler than TCP: hosts on the network send data (in units called datagrams ) without any connections needing to be established.

TCP vs UDP

If TCP is like building highways between houses before sending packages between them, then UDP is much like sending over a carrier pigeon from one house to another in order to deliver packages: you don't know whether the pigeon will head in the right way, drop your package along the way, or encounter an issue mid-travel. On the other hand, there is less overhead to use UDP than managing a connection over TCP / building a highway.

When speed is more important than reliability, especially when applications need to stream very small amounts of information quickly (smaller packages of information means less issues with reliability), then UDP is preferred. A lot of real time streaming applications, (e.g. live TV streaming, Voice over IP (VoIP)) prefer UDP over TCP. Since UDP does not need to retransmit lost datagrams, nor does it do any connection setup, there are fewer delays over UDP than TCP. TCP's continuous connection is more reliable but has more latency.

A ____________ must be established to enable data transmission across a network using TCP/IP.

SOLUTION: connection

Transaction Quiz

QUESTION:

Within a session, we encapsulate units of work that we commit as changes to a database in what we call ________ .

SOLUTION:

NOTE: The solutions are expressed in RegEx pattern. Udacity uses these patterns to check the given answer